﻿/* --- Right Column: Query Form --- */
.contact-form h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 28px;
    border-bottom: 2px solid #0056b3;
    display: inline-block;
    padding-bottom: 5px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #444;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 16px;
        transition: border-color 0.3s;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #0056b3;
            outline: none;
        }

    .form-group textarea {
        height: 150px;
        resize: vertical;
    }

.submit-btn {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

    .submit-btn:hover {
        background-color: #004494;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr; /* Stack columns on mobile */
        padding: 20px;
    }
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: left;
    margin-bottom: 30px;
}

    .form-header h2 {
        color: #333;
        font-weight: 700;
    }

.form-group {
    margin-bottom: 20px;
}

.control-label {
    font-weight: 600;
    color: #555;
}

.form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 12px;
    transition: border-color 0.3s;
}

    .form-control:focus {
        border-color: #4e73df;
        box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25);
    }

.btn-primary {
    background-color: #4e73df;
    border-color: #4e73df;
    font-weight: 600;
    padding: 12px 20px;
    transition: all 0.3s;
}

    .btn-primary:hover {
        background-color: #000;
        border-color: #2653d4;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

/* Notification Popup Styles */
.notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

    .notification-overlay.show {
        opacity: 1;
        visibility: visible;
    }

.notification-popup {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: scale(0.7);
    transition: transform 0.3s;
}

.notification-overlay.show .notification-popup {
    transform: scale(1);
}

.notification-icon {
    font-size: 60px;
    color: #28a745;
    margin-bottom: 20px;
}

.notification-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.notification-message {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.close-notification {
    background-color: #4e73df;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

    .close-notification:hover {
        background-color: #2e59d9;
    }

.loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.required-field {
    color: #e74a3b;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.additional-info {
    margin-top: 30px;
}

.info-item {
    margin-bottom: 10px;
    color: #000;
}/* ========== GALLERY GRID ========== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 400ms;
}

    .gallery-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    }

.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #e5e7eb;
}

    .gallery-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
    }

.gallery-item:hover .gallery-image-wrapper img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 400ms;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transform: translateY(15px);
    transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-overlay-content {
    transform: translateY(0);
}

.gallery-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    transition: background 300ms;
}

    .gallery-icon:hover {
        background: var(--primary, #DA251D);
        border-color: var(--primary, #DA251D);
    }

.gallery-label {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* ========== LIGHTBOX MODAL ========== */
.lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms;
}

    .lightbox-modal.active {
        opacity: 1;
        pointer-events: all;
    }

.lightbox-content {
    max-width: 90vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .lightbox-content img {
        max-width: 100%;
        max-height: 80vh;
        object-fit: contain;
        border-radius: 12px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.5);
        transform: scale(0.9);
        transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
    }

.lightbox-modal.active .lightbox-content img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: background 200ms;
    z-index: 10;
}

    .lightbox-close:hover {
        background: rgba(255,255,255,0.2);
    }

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: background 200ms;
    z-index: 10;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

    .lightbox-prev:hover,
    .lightbox-next:hover {
        background: rgba(255,255,255,0.2);
    }

.lightbox-caption {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 30px;
    white-space: nowrap;
}

.lightbox-counter {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    font-weight: 500;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .lightbox-prev {
        left: 10px;
        width: 42px;
        height: 42px;
        font-size: 14px;
    }

    .lightbox-next {
        right: 10px;
        width: 42px;
        height: 42px;
        font-size: 14px;
    }

    .lightbox-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .lightbox-caption {
        font-size: 12px;
        padding: 8px 16px;
        bottom: 16px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-label {
        font-size: 11px;
    }

    .gallery-icon {
        width: 38px;
        height: 38px;
        font-size: 13px;
    }

    .gallery-overlay {
        padding: 12px;
    }
}/* ============================================
   JYH Big Engineering - Stylesheet
   ============================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== CSS VARIABLES ===== */
:root {
    --navy: #0a1628;
    --navy-light: #132240;
    --navy-mid: #1a3050;
    --orange: #DA251D;
    --orange-light: #f59e4b;
    --orange-dark: #c5621a;
    --gold: #d4a843;
    --white: #ffffff;
    --light: #f4f6f9;
    --gray: #8899aa;
    --dark-gray: #556677;
    --text: #2c3e50;
    --shadow: 0 10px 40px rgba(10,22,40,0.12);
    --shadow-lg: 0 20px 60px rgba(10,22,40,0.18);
    --radius: 12px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== UTILITY ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.section-label {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 14px;
    position: relative;
    padding-left: 48px;
}

    .section-label::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        width: 36px;
        height: 2px;
        background: var(--orange);
        transform: translateY(-50%);
    }

.section-label-center {
    padding-left: 0;
}

    .section-label-center::before {
        display: none;
    }

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

    .section-title span {
        color: var(--orange);
    }

.section-desc {
    font-size: 16px;
    color: var(--dark-gray);
    max-width: 640px;
    line-height: 1.8;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* ===== ANIMATIONS KEYFRAMES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(232,121,43,0.4);
    }

    50% {
        box-shadow: 0 0 0 16px rgba(232,121,43,0);
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes progress-fill {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

/* ===== SCROLL ANIMATION CLASSES ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .animate-on-scroll.visible {
        opacity: 1;
        transform: translateY(0);
    }

.animate-left {
    transform: translateX(-50px);
}

    .animate-left.visible {
        transform: translateX(0);
    }

.animate-right {
    transform: translateX(50px);
}

    .animate-right.visible {
        transform: translateX(0);
    }

.animate-scale {
    transform: scale(0.85);
}

    .animate-scale.visible {
        transform: scale(1);
    }

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--navy);
    padding: 10px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

    .top-bar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }

.top-bar-left {
    display: flex;
    gap: 24px;
    align-items: center;
}

    .top-bar-left a {
        color: rgba(255,255,255,0.7);
        display: flex;
        align-items: center;
        gap: 6px;
        transition: var(--transition);
    }

        .top-bar-left a:hover {
            color: var(--orange);
        }

.top-bar-right {
    display: flex;
    gap: 14px;
}

    .top-bar-right a {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: rgba(255,255,255,0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255,255,255,0.7);
        font-size: 12px;
        transition: var(--transition);
    }

        .top-bar-right a:hover {
            background: var(--orange);
            color: #fff;
            transform: translateY(-2px);
        }

/* ===== HEADER ===== */
.main-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    transition: var(--transition);
}

    .main-header.scrolled {
        box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 30px;
}

.logo img {
    height: 52px;
    width: auto;
}

/* ===== NAVIGATION ===== */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 4px;
    align-items: center;
}

    .nav-list > li {
        position: relative;
    }

        .nav-list > li > a {
            padding: 10px 16px;
            font-size: 14.5px;
            font-weight: 600;
            color: var(--navy);
            display: flex;
            align-items: center;
            gap: 5px;
            border-radius: 8px;
            transition: var(--transition);
            white-space: nowrap;
        }

            .nav-list > li > a:hover,
            .nav-list > li > a.active {
                color: var(--orange);
                background: rgba(232,121,43,0.06);
            }

            .nav-list > li > a .fa-chevron-down {
                font-size: 9px;
                transition: transform 0.3s;
            }

        .nav-list > li:hover > a .fa-chevron-down {
            transform: rotate(180deg);
        }

/* ===== DROPDOWN MENU ===== */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.06);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s ease;
    z-index: 100;
}

.nav-list > li:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Sub-dropdown (nested) */
.dropdown-sub {
    top: -10px;
    left: 100%;
}

.dropdown-menu li {
    position: relative;
}

    .dropdown-menu li a {
        padding: 10px 22px;
        font-size: 14px;
        color: var(--text);
        display: flex;
        align-items: center;
        gap: 10px;
        transition: var(--transition);
        position: relative;
    }

        .dropdown-menu li a::before {
            content: '';
            width: 0;
            height: 2px;
            background: var(--orange);
            transition: width 0.3s;
            position: absolute;
            left: 22px;
            bottom: 6px;
        }

        .dropdown-menu li a:hover {
            color: var(--orange);
            background: rgba(232,121,43,0.04);
            padding-left: 28px;
        }

            .dropdown-menu li a:hover::before {
                width: 20px;
            }

        .dropdown-menu li a i {
            font-size: 10px;
            color: var(--orange);
            opacity: 0;
            transition: var(--transition);
        }

        .dropdown-menu li a:hover i {
            opacity: 1;
        }

    /* Show sub-dropdown on hover */
    .dropdown-menu li:hover > .dropdown-sub {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

/* ===== HEADER CTA ===== */
.header-cta {
    background: var(--orange);
    color: #fff;
    padding: 11px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    white-space: nowrap;
    animation: pulse-glow 2.5s infinite;
}

    .header-cta:hover {
        background: var(--orange-dark);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(232,121,43,0.35);
    }

/* ===== MOBILE TOGGLE ===== */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: none;
    z-index: 1100;
}

    .mobile-toggle span {
        width: 26px;
        height: 2.5px;
        background: var(--navy);
        border-radius: 2px;
        transition: var(--transition);
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: var(--navy);
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,22,40,0.88) 0%, rgba(10,22,40,0.55) 50%, rgba(10,22,40,0.3) 100%);
    z-index: 1;
}

.slide-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 0 80px;
}

.slide-inner {
    max-width: 680px;
}

.slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,121,43,0.15);
    border: 1px solid rgba(232,121,43,0.3);
    color: var(--orange-light);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.slide-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

    .slide-title span {
        background: linear-gradient(135deg, var(--orange), var(--gold));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.slide-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 32px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.slide-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: var(--orange);
    color: #fff;
    padding: 14px 34px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: 2px solid var(--orange);
}

    .btn-primary:hover {
        background: transparent;
        color: var(--orange);
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(232,121,43,0.3);
    }

.btn-dark {
    background: var(--navy);
    border-color: var(--navy);
}

    .btn-dark:hover {
        background: transparent;
        color: var(--navy);
    }

.btn-outline {
    background: transparent;
    color: #fff;
    padding: 14px 34px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255,255,255,0.3);
    transition: var(--transition);
}

    .btn-outline:hover {
        border-color: #fff;
        background: rgba(255,255,255,0.1);
        transform: translateY(-2px);
    }

/* ===== SLIDER ARROWS ===== */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

    .slider-arrow:hover {
        background: var(--orange);
        border-color: var(--orange);
        transform: translateY(-50%) scale(1.08);
    }

    .slider-arrow.prev {
        left: 28px;
    }

    .slider-arrow.next {
        right: 28px;
    }

/* ===== SLIDER DOTS ===== */
.slider-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

    .slider-dot.active {
        background: var(--orange);
        border-color: var(--orange);
        width: 36px;
        border-radius: 6px;
    }

/* ===== SLIDER PROGRESS BAR ===== */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.1);
    z-index: 10;
}

.slider-progress-bar {
    height: 100%;
    background: var(--orange);
    width: 0%;
    transition: width 0.3s linear;
}

    .slider-progress-bar.animating {
        animation: progress-fill 5s linear forwards;
    }

/* ===== MARQUEE STRIP ===== */
.marquee-strip {
    background: var(--navy);
    padding: 16px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.marquee-content {
    display: inline-flex;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 40px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
}

    .marquee-item .dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--orange);
    }

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

    .about-image-main img {
        width: 100%;
        height: 420px;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .about-image-main:hover img {
        transform: scale(1.05);
    }

.about-image-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--orange);
    color: #fff;
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(232,121,43,0.35);
    animation: float 3s ease-in-out infinite;
}

    .about-image-badge .number {
        font-family: 'Outfit', sans-serif;
        font-size: 42px;
        font-weight: 900;
        line-height: 1;
        display: block;
    }

    .about-image-badge .label {
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 4px;
        display: block;
    }

.about-accent-shape {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border: 3px solid var(--orange);
    border-radius: 16px;
    opacity: 0.2;
    z-index: -1;
}

.about-content .section-desc {
    margin-bottom: 28px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text);
}

    .about-feature i {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(232,121,43,0.1);
        color: var(--orange);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        flex-shrink: 0;
    }

/* ===== SERVICES SECTION ===== */
.services-section {
    background: var(--light);
    position: relative;
    overflow: hidden;
}

    .services-section::before {
        content: '';
        position: absolute;
        top: -200px;
        right: -200px;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(232,121,43,0.06) 0%, transparent 70%);
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, var(--orange), var(--gold));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(232,121,43,0.1), rgba(212,168,67,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--orange);
    margin-bottom: 22px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--orange);
    color: #fff;
    transform: scale(1.08) rotate(-5deg);
}

.service-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    transition: var(--transition);
}

.service-card:hover h3 {
    color: var(--orange);
}

.service-card p {
    font-size: 14px;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

    .service-link i {
        font-size: 11px;
        transition: transform 0.3s;
    }

.service-card:hover .service-link i {
    transform: translateX(5px);
}

.service-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 60px;
    font-weight: 900;
    color: rgba(10,22,40,0.03);
    line-height: 1;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    padding: 70px 0;
}

    .stats-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(232,121,43,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 22px;
    color: var(--orange);
    transition: var(--transition);
}

.stat-item:hover .stat-icon {
    background: var(--orange);
    color: #fff;
    transform: scale(1.1) rotate(10deg);
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

    .stat-number .suffix {
        font-size: 28px;
        color: var(--orange);
        font-weight: 700;
    }

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ===== PRODUCTS SHOWCASE ===== */
.products-section {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }

.product-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--orange);
    color: #fff;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-body {
    padding: 24px;
}

    .product-body h3 {
        font-family: 'Outfit', sans-serif;
        font-size: 19px;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 10px;
        transition: var(--transition);
    }

.product-card:hover .product-body h3 {
    color: var(--orange);
}

.product-body p {
    font-size: 14px;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 18px;
}

.product-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

    .product-link:hover {
        gap: 14px;
    }

/* ===== WHY CHOOSE US ===== */
.why-section {
    background: var(--light);
    position: relative;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: center;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-feature {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

    .why-feature:hover {
        transform: translateX(8px);
        box-shadow: var(--shadow);
        border-color: rgba(232,121,43,0.15);
    }

.why-feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    flex-shrink: 0;
    transition: var(--transition);
}

.why-feature:hover .why-feature-icon {
    transform: rotate(-8deg) scale(1.08);
}

.why-feature h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.why-feature p {
    font-size: 13.5px;
    color: var(--dark-gray);
    line-height: 1.7;
}

.why-image-wrap {
    position: relative;
}

    .why-image-wrap img {
        border-radius: 16px;
        width: 100%;
        height: 500px;
        object-fit: cover;
        box-shadow: var(--shadow-lg);
    }

.why-floating-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--navy);
    color: #fff;
    padding: 28px 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    animation: float 3.5s ease-in-out infinite;
}

    .why-floating-card h4 {
        font-family: 'Outfit', sans-serif;
        font-size: 32px;
        font-weight: 900;
        color: var(--orange);
        line-height: 1;
    }

    .why-floating-card p {
        font-size: 13px;
        color: rgba(255,255,255,0.7);
        margin-top: 6px;
    }

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
    position: relative;
}

    .testimonial-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

    .testimonial-card::before {
        content: '\201C';
        position: absolute;
        top: 16px;
        right: 24px;
        font-size: 72px;
        font-family: Georgia, serif;
        color: rgba(232,121,43,0.08);
        line-height: 1;
    }

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

    .testimonial-stars i {
        color: #f5a623;
        font-size: 14px;
    }

.testimonial-card .text {
    font-size: 14.5px;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 22px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

    .testimonial-author img {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid rgba(232,121,43,0.2);
    }

.testimonial-author-info h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
}

.testimonial-author-info span {
    font-size: 12.5px;
    color: var(--gray);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(232,121,43,0.12) 0%, transparent 70%);
    }

    .cta-section::after {
        content: '';
        position: absolute;
        bottom: -80px;
        left: -80px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(232,121,43,0.08) 0%, transparent 70%);
    }

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.cta-text h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 10px;
}

    .cta-text h2 span {
        color: var(--orange);
    }

.cta-text p {
    color: rgba(255,255,255,0.6);
    font-size: 16px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-white {
    background: #fff;
    color: var(--navy);
    padding: 15px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

    .btn-white:hover {
        background: var(--orange);
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(232,121,43,0.35);
    }

.cta-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.cta-phone-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(232,121,43,0.15);
    border: 2px solid rgba(232,121,43,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--orange);
    animation: pulse-glow 2s infinite;
}

.cta-phone span {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    display: block;
}

.cta-phone strong {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}

/* ===== FOOTER ===== */
.footer {
    background: #060e1a;
    color: rgba(255,255,255,0.7);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-about img {
    height: 48px;
    margin-bottom: 18px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

    .footer-social a {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: rgba(255,255,255,0.06);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        color: rgba(255,255,255,0.6);
        transition: var(--transition);
    }

        .footer-social a:hover {
            background: var(--orange);
            color: #fff;
            transform: translateY(-3px);
        }

.footer-col h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

    .footer-col h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 30px;
        height: 2px;
        background: var(--orange);
    }

.footer-col ul li {
    margin-bottom: 10px;
}

    .footer-col ul li a {
        font-size: 14px;
        color: rgba(255,255,255,0.55);
        transition: var(--transition);
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .footer-col ul li a:hover {
            color: var(--orange);
            padding-left: 6px;
        }

        .footer-col ul li a i {
            font-size: 8px;
            color: var(--orange);
            opacity: 0;
            transition: var(--transition);
        }

        .footer-col ul li a:hover i {
            opacity: 1;
        }

.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 14px;
}

    .footer-contact li i {
        color: var(--orange);
        margin-top: 4px;
        width: 16px;
        flex-shrink: 0;
    }

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-size: 13.5px;
    color: rgba(255,255,255,0.45);
}

    .footer-copyright a {
        color: var(--orange);
    }

.footer-logos {
    display: flex;
    align-items: center;
    gap: 20px;
}

    .footer-logos img {
        height: 42px;
        width: auto;
        opacity: 0.6;
        filter: brightness(2);
        transition: var(--transition);
    }

        .footer-logos img:hover {
            opacity: 1;
        }

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(232,121,43,0.35);
    border: none;
}

    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .back-to-top:hover {
        background: var(--orange-dark);
        transform: translateY(-4px);
    }

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,22,40,0.6);
    backdrop-filter: blur(4px);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    max-width: 90vw;
    height: 100vh;
    background: var(--white);
    z-index: 1060;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 30px;
}

    .mobile-menu-panel.active {
        right: 0;
    }

.mobile-menu-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--light);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: var(--transition);
}

    .mobile-menu-close:hover {
        background: var(--orange);
        color: #fff;
    }

.mobile-menu-panel .logo {
    margin-bottom: 30px;
}

    .mobile-menu-panel .logo img {
        height: 42px;
    }

.mobile-nav-list li {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

    .mobile-nav-list li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 0;
        font-size: 15px;
        font-weight: 600;
        color: var(--navy);
    }

.mobile-dropdown-toggle {
    background: none;
    border: none;
    font-size: 12px;
    color: var(--gray);
    cursor: pointer;
    padding: 4px;
    transition: var(--transition);
}

    .mobile-dropdown-toggle.open {
        transform: rotate(180deg);
        color: var(--orange);
    }

.mobile-sub-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding-left: 16px;
}

    .mobile-sub-menu.open {
        max-height: 500px;
    }

    .mobile-sub-menu li {
        border: none;
    }

        .mobile-sub-menu li a {
            font-size: 13.5px;
            font-weight: 500;
            color: var(--dark-gray);
            padding: 10px 0;
            display: block;
        }

            .mobile-sub-menu li a:hover {
                color: var(--orange);
            }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-image-wrap {
        order: -1;
    }

        .why-image-wrap img {
            height: 350px;
        }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .main-nav {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-slider {
        height: 500px;
    }

    .slide-content {
        padding: 0 30px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

        .slider-arrow.prev {
            left: 12px;
        }

        .slider-arrow.next {
            right: 12px;
        }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .section-padding {
        padding: 70px 0;
    }

    .why-floating-card {
        left: 16px;
        bottom: -20px;
    }

    .about-image-badge {
        right: 16px;
        bottom: -16px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 420px;
    }

    .slide-title {
        font-size: 28px;
    }

    .slide-btns {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .stat-number {
        font-size: 36px;
    }
}
/* PAGE BANNER */
.page-banner {
    position: relative;
    height: 420px;
    overflow: hidden;
    background: var(--navy)
}

.page-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,rgba(10,22,40,.9) 0%,rgba(10,22,40,.6) 50%,rgba(10,22,40,.35) 100%);
    z-index: 1
}

.page-banner-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 80px
}

.page-banner-title {
    font-size: clamp(36px,5vw,60px);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px
}

    .page-banner-title span {
        background: linear-gradient(135deg,var(--orange),var(--gold));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text
    }

.page-banner-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px
}

    .page-banner-breadcrumb a {
        color: rgba(255,255,255,.6);
        font-weight: 500;
        transition: var(--transition)
    }

        .page-banner-breadcrumb a:hover {
            color: var(--orange)
        }

.breadcrumb-sep {
    color: rgba(255,255,255,.3);
    font-size: 10px
}

.breadcrumb-current {
    color: var(--orange);
    font-weight: 600
}

.page-banner-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1
}

.page-banner-shape-1 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    right: -60px;
    background: rgba(232,121,43,.08)
}

.page-banner-shape-2 {
    width: 180px;
    height: 180px;
    top: -40px;
    right: 200px;
    border: 2px solid rgba(232,121,43,.12);
    background: transparent
}

/* MARQUEE */
.marquee-strip {
    background: var(--navy);
    padding: 16px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06)
}

.marquee-content {
    display: inline-flex;
    animation: marquee 30s linear infinite
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 40px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,.6);
    letter-spacing: 1px;
    text-transform: uppercase
}

    .marquee-item .dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--orange)
    }

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ABOUT SECTION */
.about-section {
    background: var(--white)
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center
}

.about-image-wrap {
    position: relative
}

.about-image-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative
}

    .about-image-main img {
        width: 100%;
        height: 420px;
        object-fit: cover;
        transition: transform .6s ease
    }

    .about-image-main:hover img {
        transform: scale(1.05)
    }

.about-image-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--orange);
    color: #fff;
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(232,121,43,.35);
    animation: float 3s ease-in-out infinite
}

    .about-image-badge .number {
        font-size: 42px;
        font-weight: 900;
        line-height: 1;
        display: block
    }

    .about-image-badge .label {
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 4px;
        display: block
    }

.about-accent-shape {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border: 3px solid var(--orange);
    border-radius: 16px;
    opacity: .2;
    z-index: -1
}

@keyframes float {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

.about-content .section-desc {
    margin-bottom: 28px
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text)
}

    .about-feature i {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(232,121,43,.1);
        color: var(--orange);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        flex-shrink: 0
    }

/* ABOUT DETAIL */
.about-detail-section {
    background: var(--light)
}

.about-detail-text {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center
}

    .about-detail-text p {
        font-size: 16px;
        color: var(--dark-gray);
        line-height: 1.9;
        margin-bottom: 18px
    }

        .about-detail-text p:last-child {
            margin-bottom: 0
        }

.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px
}

.about-highlight-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 36px;
    box-shadow: 0 4px 20px rgba(0,0,0,.05);
    border: 1px solid rgba(0,0,0,.04);
    border-top: 4px solid var(--orange);
    transition: var(--transition)
}

    .about-highlight-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow)
    }

.about-highlight-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg,rgba(232,121,43,.1),rgba(212,168,67,.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--orange);
    margin-bottom: 20px;
    transition: var(--transition)
}

.about-highlight-card:hover .about-highlight-icon {
    background: var(--orange);
    color: #fff;
    transform: scale(1.08) rotate(-5deg)
}

.about-highlight-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 14px
}

.about-highlight-card p {
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.8
}

.about-highlight-card strong {
    color: var(--navy)
}

/* STATS */
.stats-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    padding: 70px 0
}

    .stats-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
    }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    position: relative;
    z-index: 1
}

.stat-item {
    text-align: center;
    padding: 20px
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(232,121,43,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 22px;
    color: var(--orange);
    transition: var(--transition)
}

.stat-item:hover .stat-icon {
    background: var(--orange);
    color: #fff;
    transform: scale(1.1) rotate(10deg)
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px
}

    .stat-number .suffix {
        font-size: 28px;
        color: var(--orange);
        font-weight: 700
    }

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,.6);
    font-weight: 500;
    letter-spacing: .5px
}

/* FAQ - PURE CSS CHECKBOX HACK */
.faq-section {
    background: var(--white)
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 50px
}

.faq-col {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.faq-item {
    background: var(--light);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.04);
    transition: var(--transition)
}

    .faq-item:hover {
        border-color: rgba(232,121,43,.15)
    }

.faq-cb {
    display: none
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    transition: var(--transition);
    user-select: none
}

    .faq-question:hover {
        color: var(--orange)
    }

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(232,121,43,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
    color: var(--orange);
    transition: var(--transition);
    position: relative
}

    .faq-icon .fa-minus {
        display: none;
        position: absolute
    }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease
}

    .faq-answer p {
        padding: 0 24px 20px;
        font-size: 14.5px;
        color: var(--dark-gray);
        line-height: 1.8
    }

.faq-cb:checked ~ .faq-question {
    color: var(--orange)
}

    .faq-cb:checked ~ .faq-question .faq-icon {
        background: var(--orange);
        color: #fff
    }

        .faq-cb:checked ~ .faq-question .faq-icon .fa-plus {
            display: none
        }

        .faq-cb:checked ~ .faq-question .faq-icon .fa-minus {
            display: block
        }

.faq-cb:checked ~ .faq-answer {
    max-height: 500px
}

.faq-cb:checked ~ .faq-item-bg {
    background: var(--white);
    border-color: rgba(232,121,43,.2);
    box-shadow: 0 4px 20px rgba(232,121,43,.08)
}

/* CTA */
.cta-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    padding: 80px 0
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(232,121,43,.12) 0%,transparent 70%)
    }

    .cta-section::after {
        content: '';
        position: absolute;
        bottom: -80px;
        left: -80px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(232,121,43,.08) 0%,transparent 70%)
    }

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap
}

.cta-text h2 {
    font-size: clamp(26px,3.5vw,40px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 10px
}

    .cta-text h2 span {
        color: var(--orange)
    }

.cta-text p {
    color: rgba(255,255,255,.6);
    font-size: 16px
}

.cta-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap
}

.btn-white {
    background: #fff;
    color: var(--navy);
    padding: 15px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition)
}

    .btn-white:hover {
        background: var(--orange);
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(232,121,43,.35)
    }

.cta-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff
}

.cta-phone-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(232,121,43,.15);
    border: 2px solid rgba(232,121,43,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--orange)
}

.cta-phone span {
    font-size: 13px;
    color: rgba(255,255,255,.6);
    display: block
}

.cta-phone strong {
    font-size: 17px;
    font-weight: 700;
    color: #fff
}
/* RESPONSIVE */
@media(max-width:1024px) {
    .about-cards-grid {
        grid-template-columns: 1fr
    }

    .stats-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 20px
    }

    .footer-grid {
        grid-template-columns: repeat(2,1fr)
    }
}

@media(max-width:768px) {
    .top-bar {
        display: none
    }

    .main-nav {
        display: none
    }

    .header-cta {
        display: none
    }

    .mobile-toggle {
        display: flex
    }

    .page-banner {
        height: 320px
    }

    .page-banner-content {
        padding: 0 30px;
        align-items: center;
        text-align: center
    }

    .page-banner-breadcrumb {
        justify-content: center
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px
    }

    .about-features {
        grid-template-columns: 1fr
    }

    .faq-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .cta-inner {
        flex-direction: column;
        text-align: center
    }

    .cta-actions {
        justify-content: center
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center
    }

    .section-padding {
        padding: 70px 0
    }

    .page-banner-shape-2 {
        display: none
    }

    .whatsapp-float {
        bottom: 90px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 24px
    }
}

@media(max-width:480px) {
    .page-banner {
        height: 260px
    }

    .page-banner-title {
        font-size: 28px
    }

    .faq-question {
        padding: 16px 18px;
        font-size: 14px
    }

    .faq-answer p {
        padding: 0 18px 16px;
        font-size: 13.5px
    }

    .about-highlight-card {
        padding: 28px 22px
    }

    .stat-number {
        font-size: 36px
    }
}
/* PRODUCT INTRO */
.product-intro-section {
    background: var(--white);
}

.product-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-intro-image-inner {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

    .product-intro-image-inner img {
        width: 100%;
        height: 460px;
        object-fit: cover;
        transition: transform .6s ease;
    }

    .product-intro-image-inner:hover img {
        transform: scale(1.05);
    }

.product-intro-content .section-desc {
    margin-bottom: 32px;
}

.product-key-points {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.product-key-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    background: var(--light);
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,.04);
    transition: var(--transition);
}

    .product-key-point:hover {
        border-color: rgba(232,121,43,.2);
        transform: translateX(6px);
        box-shadow: 0 4px 16px rgba(232,121,43,.08);
    }

.product-key-point-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(232,121,43,.1), rgba(212,168,67,.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--orange);
    flex-shrink: 0;
    transition: var(--transition);
}

.product-key-point:hover .product-key-point-icon {
    background: var(--orange);
    color: #fff;
    transform: rotate(-5deg);
}

.product-key-point strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 3px;
}

.product-key-point span {
    font-size: 13.5px;
    color: var(--dark-gray);
    line-height: 1.6;
}

/* SPECIFICATIONS TABLE */
.product-specs-section {
    background: var(--light);
    padding: 80px 0;
}

.product-specs-header {
    text-align: center;
    margin-bottom: 40px;
}

.product-specs-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
}

.product-specs-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    min-width: 700px;
}

    .product-specs-table thead tr {
        background: var(--navy);
    }

    .product-specs-table th {
        padding: 18px 20px;
        font-size: 14px;
        font-weight: 700;
        color: #fff;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: .5px;
    }

    .product-specs-table td {
        padding: 16px 20px;
        font-size: 14px;
        color: var(--dark-gray);
        text-align: center;
        line-height: 1.6;
        border-bottom: 1px solid rgba(0,0,0,.06);
    }

    .product-specs-table tbody tr {
        transition: var(--transition);
    }

        .product-specs-table tbody tr:hover {
            background: rgba(232,121,43,.04);
        }

        .product-specs-table tbody tr:nth-child(even) {
            background: var(--light);
        }

            .product-specs-table tbody tr:nth-child(even):hover {
                background: rgba(232,121,43,.06);
            }

    .product-specs-table td:first-child {
        font-weight: 700;
        color: var(--navy);
        text-align: left;
        background: rgba(232,121,43,.03);
    }

    .product-specs-table tbody tr:hover td:first-child {
        background: rgba(232,121,43,.08);
    }

/* PRODUCT FULL IMAGE */
.product-full-image-section {
    padding: 60px 0;
    background: var(--white);
}

.product-full-image-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

    .product-full-image-wrap img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        transition: transform .6s ease;
    }

    .product-full-image-wrap:hover img {
        transform: scale(1.03);
    }

/* HOW IT WORKS */
.how-it-works-section {
    background: var(--light);
}

.hiw-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.hiw-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 26px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.04);
    border-top: 4px solid var(--orange);
    transition: var(--transition);
}

    .hiw-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

.hiw-number {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 52px;
    font-weight: 900;
    color: rgba(10,22,40,.04);
    line-height: 1;
}

.hiw-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.hiw-card:hover .hiw-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 24px rgba(232,121,43,.35);
}

.hiw-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    transition: var(--transition);
}

.hiw-card:hover h4 {
    color: var(--orange);
}

.hiw-card p {
    font-size: 14px;
    color: var(--dark-gray);
    line-height: 1.7;
}

/* CTA */
.cta-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(232,121,43,.12) 0%, transparent 70%);
    }

    .cta-section::after {
        content: '';
        position: absolute;
        bottom: -80px;
        left: -80px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(232,121,43,.08) 0%, transparent 70%);
    }

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.cta-text h2 {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 10px;
}

    .cta-text h2 span {
        color: var(--orange);
    }

.cta-text p {
    color: rgba(255,255,255,.6);
    font-size: 16px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-white {
    background: #fff;
    color: var(--navy);
    padding: 15px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

    .btn-white:hover {
        background: var(--orange);
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(232,121,43,.35);
    }

.cta-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.cta-phone-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(232,121,43,.15);
    border: 2px solid rgba(232,121,43,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--orange);
}

.cta-phone span {
    font-size: 13px;
    color: rgba(255,255,255,.6);
    display: block;
}

.cta-phone strong {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hiw-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-banner {
        height: 320px;
    }

    .page-banner-content {
        padding: 0 30px;
        align-items: center;
        text-align: center;
    }

    .page-banner-breadcrumb {
        justify-content: center;
    }

    .page-banner-shape-2 {
        display: none;
    }

    .product-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-intro-image-inner img {
        height: 320px;
    }

    .hiw-grid {
        grid-template-columns: 1fr;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions {
        justify-content: center;
    }

    .product-full-image-wrap img {
        height: 260px;
    }

    .section-padding {
        padding: 70px 0;
    }

    .product-specs-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .page-banner {
        height: 260px;
    }

    .page-banner-title {
        font-size: 28px;
    }

    .product-key-point {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}